home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / vb / vb_isam.exe / GLOBAL.BAS < prev    next >
Encoding:
BASIC Source File  |  1991-07-31  |  535 b   |  10 lines

  1. ' DECLARES FOR CALLING BTRIEVE-DLL
  2. Declare Function wbtrvinit Lib "wbtrcall.dll" (ByVal init$) As Integer
  3. Declare Sub wbtrvstop Lib "wbtrcall.dll" ()
  4. Declare Function btrcall Lib "wbtrcall.dll" (ByVal a%, ByVal b$, ByVal c$, d%, ByVal e$, ByVal f%, ByVal g%) As Integer
  5.  
  6. ' DECLARES F▄R ASCII-ANSI KONVERTIERUNG
  7. Declare Function ansitooem Lib "Keyboard" (ByVal lpAnsiStr As String, ByVal lpOemStr As String) As Integer
  8. Declare Function oemtoansi Lib "Keyboard" (ByVal lpOemStr As String, ByVal lpAnsiStr As String) As Integer
  9.  
  10.